home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / gkismet / Observable.pm < prev    next >
Text File  |  2005-10-20  |  1KB  |  69 lines

  1. #!/usr/bin/perl -w
  2. #
  3. # $Id: Observable.pm,v 1.9 2004/03/15 03:43:43 solovam Exp $
  4. #
  5. # This file is a part of gkismet
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20. #
  21.  
  22. #
  23. # Observable class
  24. #
  25. package Observable;
  26.  
  27. use strict;
  28.  
  29. #
  30. # Notify observers
  31. #
  32. sub notifyObservers
  33. {
  34.     my $self = shift;
  35.     my $data = shift;
  36.     for (my $i = 0; $i < scalar(@{$self->{'observers'}}); $i++)
  37.     {
  38.         $self->{'observers'}[$i]->update($self, $data);
  39.     }
  40. }
  41.  
  42. #
  43. # Register an observer
  44. #
  45. sub addObserver
  46. {
  47.     my $self = shift;
  48.     my $observer = shift;
  49.     push @{$self->{'observers'}}, $observer;
  50. }
  51.  
  52. #
  53. # Remove observer
  54. #
  55. sub removeObserver
  56. {
  57.     my $self = shift;
  58.     my $observer = shift;
  59.     for(my $i = 0; $i < scalar(@{$self->{'observers'}}); $i++)
  60.     {
  61.         if($self->{'observers'}[$i] == $observer)
  62.         {
  63.             splice @{$self->{'observers'}}, $i, 1;
  64.         }
  65.     }
  66. }
  67.  
  68. 1;
  69.